home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000170_news@columbia.edu _Fri Oct 8 18:24:46 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA16160
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 8 Oct 1999 18:24:46 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id SAA17390
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 8 Oct 1999 18:06:48 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: MS-Kermit Talking on 2 Ports?
  11. Date: 8 Oct 1999 22:06:47 GMT
  12. Organization: Columbia University
  13. Message-ID: <7tlptn$gvb$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <37fe44bc.1767178@news.mcs.com>,
  17. Ron Heiby <heiby_u@falkor.chi.il.us> wrote:
  18. : I have an application that must run in a DOS environment no a "586" class
  19. : processor. I do not have any particular need for file transfer in this
  20. : application, but I do need to be able to read from and write to two serial
  21. : ports, non-blocking, pretty much full-time. The data needs and rates should
  22. : be fairly reasonable, and I do not anticipate having any problems "keeping
  23. : up".
  24. : I would like to not have to write the application from scratch. I figure that
  25. : I should be able to handle everything I need to do within Kermit macro
  26. : language.
  27. : However, I haven't been able to find a reference to being able to have more
  28. : than one serial port active at a time. Is this possible?
  29. No.  Most Kermit software can only handle one connection at a time.  
  30. One Kermit program, MS-DOS Kermit in fact, can handle multiple connections
  31. simultaneously, but only TCP/IP connections, not serial ones.
  32.  
  33. In cases where people want to have multiple Kermit sessions, they normally
  34. run multiple copies of Kermit, but of course that's not an option in DOS.
  35.  
  36. I was thinking it might be possible to write an MS-DOS Kermit script that
  37. could jump back and forth between the two ports, opening and closing the
  38. port each time, but the flaw there is that flow control would need to be
  39. operational on Port 2 while Port 1 is open, and vice versa, and there's no
  40. way to do that.
  41.  
  42. - Frank